AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones FAA (Automatic Application Features)
  • Saved customizations
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Loads all customizations made via AAFs (Automatic Applications Features) that have previously been saved to a file.
Example
// Click on "Import my parameters"
FileName is string
FileName = fSelect("", "", "Select a file...", "parameters" + ...
TAB + "*.param" + CR + "All files (*.*)" + ...
TAB + "*.*", "*.*", fselExist)
IF FileName = "" THEN RETURN
AAFImportParameter(FileName)
IF ErrorOccurred THEN
Error()
ELSE
ToastDisplay("Parameters retrieved successfully.")
END
Syntax
AAFImportParameter(<File to import>)
<File to import>: Character string
Name and full path of the file to which the AAF customizations have been previously saved.
Remarks

Saved customizations

All customizations made by the user are saved:
  • Window sizes and positions,
  • Stored control values,
  • Input history,
  • Custom-notes,
  • Customization of the Dashboard controls,
  • Dockable Panel customization, ...
These parameters can be restored with AAFImportParameter or via the Automatic Application Feature for importing parameters (available in the context menu of a window in the application).
Component: wd290obj.dll
Versión mínima requerida
  • Versión 24
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

Señalar un error o enviar una sugerencia | Ayuda local